home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
m
/
maxonc++2.dms
/
maxonc++2.adf
/
MCPIncl.lha
/
utility
/
date.h
next >
Wrap
C/C++ Source or Header
|
1992-01-26
|
451b
|
31 lines
#ifndef UTILITY_DATE_H
#define UTILITY_DATE_H 1
/*
** $Filename: utility/date.h $
** $Release: 2.04 $
** $Revision: 36.2 $
** $Date: 91/03/04 $
**
** Date conversion routines ClockData definition.
**
** (C) Copyright 1989,1990 Commodore-Amiga Inc.
** All Rights Reserved
*/
#ifndef EXEC_TYPES_H
#include "exec/types.h"
#endif
struct ClockData
{
UWORD sec;
UWORD min;
UWORD hour;
UWORD mday;
UWORD month;
UWORD year;
UWORD wday;
};
#endif